home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / asp_mdms.zip / V.ASP < prev    next >
Text File  |  1989-08-01  |  4KB  |  89 lines

  1. ;*************************************************************************
  2. ;* V.ASP (C) 1988 DATASTORM TECHNOLOGIES, INC.                           *
  3. ;*                                                                       *
  4. ;* An ASPECT script file for initializing the HAYES V-Series SMARTMODEM  *
  5. ;* 9600 for proper use with PROCOMM PLUS.                                *
  6. ;*                                                                       *
  7. ;*************************************************************************
  8. CLEAR
  9. CUROFF
  10. BOX 0 0 9 58 14
  11. ATSAY 2 2 14 "PROCOMM PLUS is designed to work efficiently with the"
  12. ATSAY 3 2 14 "HAYES V-Series 9600 in all its operational modes, but"
  13. ATSAY 4 2 14 "the initial setup differs from the setup for ordinary"
  14. ATSAY 5 2 14 "non-error-correcting modems."
  15. ATSAY 7 2 14 "                 <press ENTER to continue>"
  16. WAIT1:
  17. IF NOT HITKEY
  18.    GOTO WAIT1
  19. ENDIF
  20. CLEAR
  21. BOX 0 0 17 59 14
  22. ATSAY 2 2 14 "The basic principle is that the computer-to-modem baud-"
  23. ATSAY 3 2 14 "rate is fixed at 19200 (thus your status line will"
  24. ATSAY 4 2 14 "*always* read 19200) and the modem itself adjusts to"
  25. ATSAY 5 2 14 "the actual speed of the connection."
  26. ATSAY 7 2 14 "This ASPECT file sends to the modem all the commands"
  27. ATSAY 8 2 14 "necessary for efficient automatic use of its error-"
  28. ATSAY 9 2 14 "correcting features. You only need to run it one time,"
  29. ATSAY 10 2 14 "since it tells the modem to write these settings to"
  30. ATSAY 11 2 14 "non-volatile RAM. It is also very important to follow"
  31. ATSAY 12 2 14 "*exactly* the instructions that appear on the screen"
  32. ATSAY 13 2 14 "as you run this file."
  33. ATSAY 15 2 14 "                 <press ENTER to continue>"
  34. WAIT2:
  35. IF NOT HITKEY
  36.    GOTO WAIT2
  37. ENDIF
  38. CLEAR
  39. SOUND 440 50
  40. BOX 0 0 4 50 14
  41. ATSAY 2 2 14 "V-Series 9600 modem initialization... WORKING..."
  42. SET BAUDRATE 19200                         ;Set up comm line
  43. SET PARITY NONE
  44. SET DATABITS 8
  45. SET STOPBITS 1
  46. SET DISPLAY OFF
  47. SET TXPACE 50
  48. TRANSMIT "AT^M"                           ;Get modem's attention
  49. PAUSE 2
  50. TRANSMIT "ATZ^M"                          ;Resets non-volatile mem
  51. PAUSE 2
  52. TRANSMIT "AT&F^M"                         ;Get factory defaults
  53. PAUSE 2
  54. TRANSMIT "AT&C1^M"                        ;Set CD to follow true state of line
  55. PAUSE 2
  56. TRANSMIT "AT&D2^M"                        ;dropping DTR will drop line
  57. PAUSE 2
  58. TRANSMIT "AT S7=60^M"                     ;Set wait for CD to 60 seconds
  59. PAUSE 2
  60. TRANSMIT "AT S11=55^M"                    ;Speed up the dialing
  61. PAUSE 2
  62. TRANSMIT "AT &W0^M"                       ;Write settings to NRAM Profile 0
  63. PAUSE 2
  64. TRANSMIT "AT&Y0^M"                        ;Make sure Profile 0 is default
  65. SET TXPACE 0
  66. CLEAR
  67. SET DISPLAY ON
  68. SOUND 440 50
  69. BOX 0 0 20 58 14
  70. ATSAY 2 2 14 "HAYES V-Series 9600 modem initialization COMPLETED!"
  71. ATSAY 4 2 14 "Your HAYES modem will now power up with the proper"
  72. ATSAY 5 2 14 "defaults for PROCOMM PLUS.  You should now use the"
  73. ATSAY 6 2 14 "Setup Facility (Alt-S) MODEM OPTIONS to make your"
  74. ATSAY 7 2 14 "INITIALIZATION COMMAND `"ATZ^M`" (without the quotes)."
  75. ATSAY 8 2 14 "In addition AUTOBAUD DETECT should be set to OFF and"
  76. ATSAY 9 2 14 "in TERMINAL OPTIONS Hardware Flow Control (RTS/CTS)"
  77. ATSAY 10 2 14 "should be turned ON. All dialing directory entries"
  78. ATSAY 11 2 14 "should be should be set to 19,200 baud, as well as your"
  79. ATSAY 12 2 14 "Alt-P line setting. Make sure to save your changes."
  80. ATSAY 13 2 14 "Two last things: your CONNECT MESSAGES in MODEM OPTIONS"
  81. ATSAY 14 2 14 "should all read simply `"CONNECT`" (without quotes)"
  82. ATSAY 15 2 14 "and you *may* want to change the S38 register by typing"
  83. ATSAY 16 2 14 "`"AT S38=0 &W0`" (without quotes) in terminal mode."
  84. ATSAY 17 2 14 "For a full explanation of this setting please see"
  85. ATSAY 18 2 14 "APPENDIX B of your modem manual."
  86. CURON
  87. LOCATE 22 0
  88.  
  89.